projects
/
utf8proc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b945edd
)
[CMake] Use target_compile_definitions to avoid affecting global definitions (#121)
author
past-due
<30942300+past-due@users.noreply.github.com>
Fri, 27 Apr 2018 16:55:53 +0000
(12:55 -0400)
committer
Steven G. Johnson
<stevenj@mit.edu>
Fri, 27 Apr 2018 16:55:53 +0000
(12:55 -0400)
CMakeLists.txt
patch
|
blob
|
history
diff --git
a/CMakeLists.txt
b/CMakeLists.txt
index 0ea3bd14ee1de79b338f2a202bcfa0238fbb6be9..cbc8d93ca01727a20241d104f3a6a816d2de6aa6 100644
(file)
--- a/
CMakeLists.txt
+++ b/
CMakeLists.txt
@@
-1,4
+1,4
@@
-cmake_minimum_required (VERSION 2.8)
+cmake_minimum_required (VERSION 2.8
.12
)
include (utils.cmake)
@@
-13,10
+13,6
@@
set(SO_MAJOR 2)
set(SO_MINOR 1)
set(SO_PATCH 1)
-add_definitions (
- -DUTF8PROC_EXPORTS
-)
-
if (NOT MSVC)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O2 -std=c99 -pedantic -Wall")
endif ()
@@
-26,6
+22,8
@@
add_library (utf8proc
utf8proc.h
)
+target_compile_definitions(utf8proc PRIVATE "UTF8PROC_EXPORTS")
+
set_target_properties (utf8proc PROPERTIES
POSITION_INDEPENDENT_CODE ON
VERSION "${SO_MAJOR}.${SO_MINOR}.${SO_PATCH}"